HTMLify
index.html
Views: 398 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <!DOCTYPE html> <html> <head> <title>Weiben - Wheel of fortune</title> <meta charset="UTF-8" /> <link rel="stylesheet" type="text/css" href="styles.css" /> </head> <body> <h1>Spin the wheel🎡</h1> <div id="app"> <img class="marker" src="marker.png" /> <img class="wheel" src="wheel.png" /> <img class="button" src="button.png" /> </div> <script src="script.js"></script> </body> </html> |